projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9b9ee4
)
(line-move-finish): Inhibit field motion when computing `line-end'.
author
Miles Bader
<miles@gnu.org>
Mon, 10 Jun 2002 08:04:48 +0000
(08:04 +0000)
committer
Miles Bader
<miles@gnu.org>
Mon, 10 Jun 2002 08:04:48 +0000
(08:04 +0000)
lisp/simple.el
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index 6ae43f637703d4485507c1bd11ee180143c60e8b..9f01cef9f66865e5fe66121dc00a65d066acaba0 100644
(file)
--- a/
lisp/simple.el
+++ b/
lisp/simple.el
@@
-2668,7
+2668,8
@@
Outline mode sets this."
(line-end
;; Compute the end of the line
;; ignoring effectively intangible newlines.
- (let ((inhibit-point-motion-hooks nil))
+ (let ((inhibit-point-motion-hooks nil)
+ (inhibit-field-text-motion t))
(save-excursion (end-of-line) (point)))))
;; Move to the desired column.